home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / UResourceParser / TMPLParser ƒ / TMPL.main.cp next >
Encoding:
Text File  |  1996-10-14  |  535 b   |  22 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    Copyright © 1996 Michael Schürig
  3. //
  4. //    You may copy this file, rip it apart or use it in derivative work as long
  5. //    as you don't change the original file and this message remains intact.
  6. // =================================================================================
  7.  
  8. #include "TMPLParser.h"
  9.  
  10. void
  11. main()
  12. {
  13.     TMPLParser *rp;
  14.     Handle    h;
  15.     
  16.     h = Get1NamedResource('TMPL', "\paete");
  17.     
  18.     rp = new TMPLParser(h);
  19.     
  20.     rp->WriteParser("AeteParser");
  21. }
  22.